home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / cpu100.zip / CPU.H < prev    next >
Text File  |  1993-04-15  |  795b  |  23 lines

  1. /*
  2.    ┌──────────────────────────────────────────────────────────────────────────┐
  3.    │                                                                          │
  4.    │  CPU.H  -  is Copyright (C) 1993 by Lindsay Vagg, Trading as             │
  5.    │            Vaggabond Software.                                           │
  6.    │                                                                          │
  7.    └──────────────────────────────────────────────────────────────────────────┘
  8. */
  9.  
  10. #if defined(__TURBOC__)                     /* Turbo C */
  11.     #if __STDC__
  12.         #define _Cdecl
  13.     #else
  14.         #define _Cdecl  cdecl
  15.     #endif
  16.     #define _Near
  17. #endif
  18.  
  19. int    _Cdecl cpu(void);
  20. int    _Cdecl isprot(void);
  21. int    _Cdecl iswin(void);
  22. char    *_Cdecl cpuspeed(unsigned int round,unsigned int cputype);
  23.